home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / mac / data / Index.dir / 00003_Script_3 < prev    next >
Text File  |  2001-03-08  |  830b  |  38 lines

  1. Global gsearchtxt, gSearchImg, gSearchmm
  2.  
  3. on prepareframe
  4.   if the machinetype = 256 then
  5.     
  6.     if member("indexcaps").lineheight <> 11 then
  7.       set the lineheight of member "indexcaps" = 11
  8.     end if
  9.   end if
  10. end 
  11.  
  12. on exitFrame
  13.   if gsearchtxt then 
  14.     set the member of sprite(32) = "text_x"
  15.   else
  16.     set the member of sprite(32) = "text_n"
  17.   end if
  18.   if gSearchImg then 
  19.     set the member of sprite(33) = "images_x"
  20.   else
  21.     set the member of sprite(33) = "images_n"
  22.   end if
  23.   if gSearchmm then 
  24.     set the member of sprite(34) = "mult_x"
  25.   else
  26.     set the member of sprite(34) = "mult_n"
  27.   end if
  28.   
  29.   repeat with x in[6,9,8,20,21,22,23,24,25,26,27,28,29,30,32,33,34]
  30.     if rollover(x) then
  31.       roll x
  32.     else
  33.       unroll x
  34.     end if
  35.   end repeat
  36.   
  37.   go the frame
  38. end